/*
	Load CSS before JavaScript
*/

/*
	Slides container
	Important:
	Set the width of your slides container
	Set to display none, prevents content flash
*/
.slides_container {
	width:930px;
	display:none; 
}

/*
	Each slide
	Important:
	Set the width of your slides
	If height not specified height will be set by the slide content
	Set to display block
*/
.slides_container div {
	width:930px;
	height:300px;
	display:block;
}

/*
	Optional:
	Reset list default style
*/
.pagination {
	list-style:none;
	margin:0;
	padding:0;
	position:absolute;
	left:30px;
	bottom:30px;*bottom:25px!important;
	z-index:50;
	float:left; width:100px;}
	
.pagination ul{ padding:0; margin:0; list-style:none;}
.pagination li { float:left;}
.pagination li a {
	display:block;
	width:14px;
	height:0;
	padding-top:14px;
	margin-right:5px;
	background-image:url(../images/circle_gray.png);
	
	overflow:hidden;list-style:none;
}

/*
	Optional:
	Show the current slide in the pagination
*/
.pagination .current a {
	background-image:url(../images/circle_green.png);
}